home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue29 / art_tips / ART_TIPS.ZIP / Tips / Examples / Win32 / unitMain.dfm / unitMain.txt
Encoding:
Text File  |  1997-06-06  |  930 b   |  33 lines

  1. object Form1: TForm1
  2.   Left = 200
  3.   Top = 108
  4.   Width = 435
  5.   Height = 300
  6.   Caption = 'Tips system sample'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   OnActivate = FormActivate
  12.   OnCreate = FormCreate
  13.   OnDestroy = FormDestroy
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Tips1: TTips
  17.     Title = 'Tips system'
  18.     TipsHelp = 'Did you know...'
  19.     TipsToShow.Strings = (
  20.       'Hello and Welcome to the Tips system...!'
  21.       'User can edit the tips by pressing "Edit button".'
  22.       
  23.         'If "ofShowBtnEdit" in "Options" then  Tips system will use loade' +
  24.         'd from stream  or file Tips. Otherwise will use default ones.'
  25.       'You can specify events for each button clicking.'
  26.       'User can change order of tips using "Drag and Drop".'
  27.       'User can add own notes / tips ("Add" button).')
  28.     PanelsColor = 14614527
  29.     Left = 16
  30.     Top = 232
  31.   end
  32. end
  33.